Getting information from Scopus

Note: This work is obtained from http://kitchingroup.cheme.cmu.edu/blog/2015/04/03/Getting-data-from-the-Scopus-API/, its author is really the author of that information. I have mainly put in a more useful way.

The access to Scopus API is restricted. First, you need a Elseview-API. You can obtain one from http://dev.elsevier.com/myapikey.html.

In my case, because I have access by a Proxy (and using a VPN, but it is transparent) I also need a PROXY_URL. That both information are not in the repository because they are personal and private. You should create your own my_scopus.py file to run that code without changes.


In [1]:
import requests
import json
from my_scopus import MY_API_KEY, PROXY_URL, MY_AUTHOR_ID

First, we define a function to access to the information


In [2]:
def print_json(resp_json):
    print(json.dumps(resp_json,
                 sort_keys=True,
                 indent=4, separators=(',', ': ')))

In [3]:
def scopus_get_info_api(url, proxy=PROXY_URL,*,verbose=False,json=True):
    """
    Returns the information obtained by the Elseview API
    """
    proxies = {
        "http": PROXY_URL
    }

    resp = requests.get("http://api.elsevier.com/content/" +url,
                    headers={'Accept':'application/json',
                             'X-ELS-APIKey': MY_API_KEY}, proxies=proxies)
    if verbose:
        print_json(resp.json())
    
    if json:
        return resp.json()
    else:
        return resp.text.encode('utf-8')

Then, a util function to show the information

A function that return the information of the author.

Obtaining Author info


In [4]:
def scopus_get_author(author_id):
    msg = "author?author_id={}&view=metrics".format(author_id)
    resp = scopus_get_info_api(msg)
    return resp['author-retrieval-response'][0]

Example, to obtain my h-index


In [5]:
author_info = scopus_get_author(MY_AUTHOR_ID)
print_json(author_info)
h_index = author_info['h-index']
print("My automatic h_index is {}".format(h_index))


{
    "@_fa": "true",
    "@status": "found",
    "coauthor-count": "26",
    "coredata": {
        "citation-count": "1235",
        "cited-by-count": "1041",
        "dc:identifier": "AUTHOR_ID:22135567700",
        "document-count": "32",
        "prism:url": "http://api.elsevier.com/content/author/author_id/22135567700"
    },
    "h-index": "10"
}
My automatic h_index is 10

Obtaining list of references

Now, we are going to extract the list of published papers.


In [6]:
def scopus_search_list(query, field, max=100, *, debug=False):
    msg = "search/scopus?query={}&nofield={}&count={}".format(query, field, max)
    
    if debug:
        print_json(scopus_get_info_api(msg))
        
    resp = scopus_get_info_api(msg)['search-results']
    list = []
    
    if resp['entry']:
        list = resp['entry']
        
    return list

In [7]:
def extract_info_papers(list):
    def get_type(code):
        if code in ['ar','re', 'ed', 'ip']:
            return 'article'
        elif code == 'cp':
            return 'congress'
        else:
            return code
        
    return [{'id': info['dc:identifier'], 
             'title': info['dc:title'], 
             'url': info['prism:url'], 
            'citations': int(info['citedby-count']), 
            'type': get_type(info['subtype']), 
             'year': info['prism:coverDate'][:4], 
            'journal': info['prism:publicationName']} for info in list]

In [8]:
def scopus_papers_from_author(author_id, *, max=100):
    """
    Return the list of papers from the author
    """
    query = "AU-ID({})".format(author_id)
    field = "dc:identifier"
    
    list = scopus_search_list(query, field, max)
    #print_json(list)
    return extract_info_papers(list)

In [9]:
papers = scopus_papers_from_author(MY_AUTHOR_ID)
print('{} papers'.format(len(papers)))


33 papers

Translate to pandas


In [10]:
import pandas as pd

In [11]:
df = pd.DataFrame.from_dict(papers)
print(df.head())


   citations                     id  \
0          0  SCOPUS_ID:84930999593   
1          2  SCOPUS_ID:84922590736   
2          0  SCOPUS_ID:84919727129   
3          4  SCOPUS_ID:84892553248   
4          0  SCOPUS_ID:84908587588   

                                             journal  \
0  International Journal of Computational Intelli...   
1                               Information Sciences   
2                     Applied Soft Computing Journal   
3                               Information Sciences   
4  Proceedings of the 2014 IEEE Congress on Evolu...   

                                               title      type  \
0  A Walk into Metaheuristics for Engineering Opt...   article   
1  A high performance memetic algorithm for extre...   article   
2  Performance evaluation of automatically tuned ...   article   
3  Region based memetic algorithm for real-parame...   article   
4  Influence of regions on the memetic algorithm ...  congress   

                                                 url  year  
0  http://api.elsevier.com/content/abstract/scopu...  2015  
1  http://api.elsevier.com/content/abstract/scopu...  2015  
2  http://api.elsevier.com/content/abstract/scopu...  2015  
3  http://api.elsevier.com/content/abstract/scopu...  2014  
4  http://api.elsevier.com/content/abstract/scopu...  2014  

Ploting results


In [12]:
papers_journal = df[df['type']=='article']
citations = papers_journal.groupby(['year']).sum()

In [13]:
%pylab inline
from matplotlib import pyplot as plt
import seaborn as sns
sns.set()


Populating the interactive namespace from numpy and matplotlib

In [14]:
ax = citations.plot(kind='bar', legend=None)
ax.set_xlabel('Year')
ax.set_ylabel('Citations')


Out[14]:
<matplotlib.text.Text at 0x7fc256c42828>

Get complete reference of a paper


In [15]:
def get_scopus_info(SCOPUS_ID):
    url = ("abstract/scopus_id/"
          + SCOPUS_ID
          + "?field=authors,title,publicationName,volume,issueIdentifier,"
          + "prism:pageRange,coverDate,article-number,doi,citedby-count,prism:aggregationType")
    
    resp = scopus_get_info_api(url, json=True)
    results = resp['abstracts-retrieval-response']
    authors_info = results['authors']
    info = results['coredata']

    fstring = '{authors}, {title}, {journal}, {volume}, {articlenum}, ({date}). {doi} (cited {cites} times).\n'
    return fstring.format(authors=', '.join([au['ce:indexed-name'] for au in authors_info['author']]),
                          title=info['dc:title'],
                          journal=info['prism:publicationName'],
                          volume=info.get('prism:volume') or 1,
                          articlenum=info.get('prism:pageRange') or
                            info.get('article-number'),
                          date=info['prism:coverDate'],
                          doi='doi:' +(info.get('prism:doi') or 'NA'),
                        cites=int(info['citedby-count']))

df_lasts = df[df['year']=='2015']

for id in df.sort(['citations'], ascending=[0])['id']:
    #print("id: '{}'".format(id))
    print(get_scopus_info(id))


Garcia S., Molina D., Lozano M., Herrera F., A study on the use of non-parametric tests for analyzing the evolutionary algorithms' behaviour: A case study on the CEC'2005 Special Session on Real Parameter Optimization, Journal of Heuristics, 15, 617-644, (2009-12-01). doi:10.1007/s10732-008-9080-4 (cited 382 times).

Derrac J., Garcia S., Molina D., Herrera F., A practical tutorial on the use of nonparametric statistical tests as a methodology for comparing evolutionary and swarm intelligence algorithms, Swarm and Evolutionary Computation, 1, 3-18, (2011-03-01). doi:10.1016/j.swevo.2011.02.002 (cited 347 times).

Lozano M., Herrera F., Krasnogor N., Molina D., Real-coded memetic algorithms with crossover hill-climbing, Evolutionary Computation, 12, 273-302, (2004-09-01). doi:10.1162/1063656041774983 (cited 173 times).

Garcia-Martinez C., Lozano M., Herrera F., Molina D., Sanchez A.M., Global and local real-coded genetic algorithms based on parent-centric crossover operators, European Journal of Operational Research, 185, 1088-1113, (2008-03-16). doi:10.1016/j.ejor.2006.06.043 (cited 82 times).

Molina D., Lozano M., Garcia-Martinez C., Herrera F., Memetic algorithms for continuous optimisation based on local search chains, Evolutionary Computation, 18, 27-63, (2010-03-12). doi:10.1162/evco.2010.18.1.18102 (cited 76 times).

Molina D., Herrera F., Lozano M., Adaptive local search parameters for real-coded memetic algorithms, 2005 IEEE Congress on Evolutionary Computation, IEEE CEC 2005. Proceedings, 1, 888-895, (2005-10-31). doi:NA (cited 47 times).

Herrera F., Lozano M., Molina D., Continuous scatter search: An analysis of the integration of some combination methods and improvement strategies, European Journal of Operational Research, 169, 450-476, (2006-03-01). doi:10.1016/j.ejor.2004.08.009 (cited 41 times).

Lozano M., Molina D., Herrera F., Editorial scalability of evolutionary algorithms and other metaheuristics for large-scale continuous optimization problems, Soft Computing, 15, 2085-2087, (2011-11-01). doi:10.1007/s00500-010-0639-2 (cited 40 times).

Lozano M., Molina D., Garcia-Martinez C., Iterated greedy for the maximum diversity problem, European Journal of Operational Research, 214, 31-38, (2011-10-01). doi:10.1016/j.ejor.2011.04.018 (cited 24 times).

Molina D., Lozano M., Sanchez A.M., Herrera F., Memetic algorithms based on local search chains for large scale continuous optimisation problems: MA-SSW-Chains, Soft Computing, 15, 2201-2220, (2011-11-01). doi:10.1007/s00500-010-0647-2 (cited 17 times).

Molina D., Lozano M., Herrer F., Memetic algorithm with local search chaining for large scale continuous optimization problems, 2009 IEEE Congress on Evolutionary Computation, CEC 2009, 1, 830-837, (2009-11-25). doi:10.1109/CEC.2009.4983031 (cited 10 times).

Molina D., Lozano M., Herrera F., Memetic algorithm with local search chaining for continuous optimization problems: A scalability test, ISDA 2009 - 9th International Conference on Intelligent Systems Design and Applications, 1, 1068-1073, (2009-12-01). doi:10.1109/ISDA.2009.143 (cited 9 times).

Puris A., Bello R., Molina D., Herrera F., Variable mesh optimization for continuous optimization problems, Soft Computing, 16, 511-525, (2012-03-01). doi:10.1007/s00500-011-0753-9 (cited 8 times).

Garcia-Martinez C., Lozano M., Molina D., A local genetic algorithm for binary-coded problems, Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics), 4193 LNCS, 192-201, (2006-10-30). doi:NA (cited 5 times).

Sanchez A.M., Lozano M., Garcia-Martinez C., Molina D., Herrera F., Real-parameter crossover operators with multiple descendents: An experimental study, International Journal of Intelligent Systems, 23, 246-268, (2008-02-01). doi:10.1002/int.20258 (cited 5 times).

Bergmeir C., Triguero I., Molina D., Aznarte J.L., Benitez J.M., Time series modeling and forecasting using memetic algorithms for regime-switching models, IEEE Transactions on Neural Networks and Learning Systems, 23, 1841-1847, (2012-12-01). doi:10.1109/TNNLS.2012.2216898 (cited 4 times).

Lacroix B., Molina D., Herrera F., Dynamically updated region based memetic algorithm for the 2013 CEC Special Session and Competition on Real Parameter Single Objective Optimization, 2013 IEEE Congress on Evolutionary Computation, CEC 2013, 1, 1945-1951, (2013-08-21). doi:10.1109/CEC.2013.6557797 (cited 4 times).

Lacroix B., Molina D., Herrera F., Region based memetic algorithm for real-parameter optimisation, Information Sciences, 262, 15-31, (2014-03-20). doi:10.1016/j.ins.2013.11.032 (cited 4 times).

Molina D., Lozano M., Garcia-Martinez C., Herrera F., Memetic algorithm for intense local search methods using local search chains, Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics), 5296 LNCS, 58-71, (2008-12-08). doi:10.1007/978-3-540-88439-2-5 (cited 2 times).

Lastra M., Molina D., Benitez J.M., A high performance memetic algorithm for extremely high-dimensional problems, Information Sciences, 293, 35-58, (2015-01-01). doi:10.1016/j.ins.2014.09.018 (cited 2 times).

Molina D., Puris A., Bello R., Herrera F., Variable mesh optimization for the 2013 CEC Special Session Niching Methods for Multimodal Optimization, 2013 IEEE Congress on Evolutionary Computation, CEC 2013, 1, 87-94, (2013-08-21). doi:10.1109/CEC.2013.6557557 (cited 1 times).

Aznarte J.L., Molina D., Sanchez A.M., Benitez J.M., A test for the homoscedasticity of the residuals in fuzzy rule-based forecasters, Applied Intelligence, 34, 386-393, (2011-06-01). doi:10.1007/s10489-011-0288-x (cited 1 times).

Liao T., Molina D., de Oca M.A.M., Stutzle T., A Note on Bound Constraints Handling for the IEEE CEC'05 Benchmark Function Suite, Evolutionary Computation, 22, 351-359, (2014-01-01). doi:10.1162/EVCO_a_00120 (cited 1 times).

Molina D., Lacroix B., Herrera F., Influence of regions on the memetic algorithm for the CEC'2014 Special Session on Real-Parameter Single Objective Optimisation, Proceedings of the 2014 IEEE Congress on Evolutionary Computation, CEC 2014, 1, 1633-1640, (2014-01-01). doi:10.1109/CEC.2014.6900536 (cited 0 times).

Liao T., Molina D., Stutzle T., Performance evaluation of automatically tuned continuous optimizers on different benchmark sets, Applied Soft Computing Journal, 27, 490-503, (2015-01-01). doi:10.1016/j.asoc.2014.11.006 (cited 0 times).

Molina D., Lozano M., Herrera F., MA-SW-Chains: Memetic algorithm based on local search chains for large scale continuous global optimization, 2010 IEEE World Congress on Computational Intelligence, WCCI 2010 - 2010 IEEE Congress on Evolutionary Computation, CEC 2010, 1, 5586034, (2010-12-01). doi:10.1109/CEC.2010.5586034 (cited 0 times).

Molina D., Lozano M., Herrera F., Study of the influence of the local search method in memetic algorithms for large scale continuous optimization problems, Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics), 5851 LNCS, 221-234, (2009-12-29). doi:10.1007/978-3-642-11169-3_16 (cited 0 times).

Lacroix B., Molina D., Herrera F., Region based memetic algorithm with LS chaining, 2012 IEEE Congress on Evolutionary Computation, CEC 2012, 1, 6256529, (2012-10-04). doi:10.1109/CEC.2012.6256529 (cited 0 times).

Marin J., Molina D., Herrera F., Modeling dynamics of a real-coded CHC algorithm in terms of dynamical probability distributions, Soft Computing, 16, 331-351, (2012-02-01). doi:10.1007/s00500-011-0745-9 (cited 0 times).

Lozano M., Rodriguez F.J., Garcia-Martinez C., Molina D., Adaptive GRASP for the maximum diversity problem, Expert Systems with Applications, 1, None, (2012-02-07). doi:10.1016/j.eswa.2012.01.064 (cited 0 times).

Liao T., Molina D., Stutzle T., Montes De Oca M.A., Dorigo M., An ACO algorithm benchmarked on the BBOB noiseless function testbed, GECCO'12 - Proceedings of the 14th International Conference on Genetic and Evolutionary Computation Companion, 1, 159-166, (2012-08-20). doi:10.1145/2330784.2330809 (cited 0 times).

Puris A., Bello R., Molina D., Herrera F., Optimising real parameters using the information of a mesh of solutions: VMO algorithm, 2012 IEEE Congress on Evolutionary Computation, CEC 2012, 1, 6252873, (2012-10-04). doi:10.1109/CEC.2012.6252873 (cited 0 times).

Xiong N., Molina D., Ortiz M.L., Herrera F., A Walk into Metaheuristics for Engineering Optimization: Principles, Methods and Recent Trends, International Journal of Computational Intelligence Systems, 8, 606-636, (2015-01-01). doi:10.1080/18756891.2015.1046324 (cited 0 times).

Get authors from a list


In [16]:
def get_author_info(paper_id):
    url = ("abstract/scopus_id/"
          + paper_id
          + "?field=authors,title,publicationName,volume,issueIdentifier,"
          + "prism:pageRange,coverDate,article-number,doi,citedby-count,prism:aggregationType")
    
    resp = scopus_get_info_api(url, json=True)
    results = resp['abstracts-retrieval-response']
    authors_info = results['authors']['author']
    authors_id = [au['ce:indexed-name'] for au in authors_info]
    return authors_id

In [17]:
from collections import defaultdict

def get_authors_list(papers_id):
    number = defaultdict(int)
    
    for i, paper_id in enumerate(papers_id):            
        authors = get_author_info(paper_id)
        
        for author in authors:
            number[author] += 1
            
    return number

authors = get_authors_list(df['id'])
print(authors)


defaultdict(<class 'int'>, {'Rodriguez F.J.': 1, 'Montes De Oca M.A.': 1, 'Bello R.': 3, 'de Oca M.A.M.': 1, 'Triguero I.': 1, 'Garcia-Martinez C.': 7, 'Herrer F.': 1, 'Stutzle T.': 3, 'Lozano M.': 17, 'Derrac J.': 1, 'Aznarte J.L.': 2, 'Marin J.': 1, 'Ortiz M.L.': 1, 'Herrera F.': 23, 'Dorigo M.': 1, 'Lastra M.': 1, 'Krasnogor N.': 1, 'Garcia S.': 2, 'Xiong N.': 1, 'Liao T.': 3, 'Lacroix B.': 4, 'Puris A.': 3, 'Sanchez A.M.': 4, 'Molina D.': 33, 'Bergmeir C.': 1, 'Benitez J.M.': 3})

In [18]:
def show_author_list(authors):
    names = authors.keys()
    names = sorted(names, key=lambda k: authors[k], reverse=True)

    for name in names:
        print("{}: {}".format(name, authors[name]))

In [19]:
show_author_list(authors = get_authors_list(df.id))


Molina D.: 33
Herrera F.: 23
Lozano M.: 17
Garcia-Martinez C.: 7
Lacroix B.: 4
Sanchez A.M.: 4
Bello R.: 3
Stutzle T.: 3
Liao T.: 3
Puris A.: 3
Benitez J.M.: 3
Aznarte J.L.: 2
Garcia S.: 2
Rodriguez F.J.: 1
Montes De Oca M.A.: 1
de Oca M.A.M.: 1
Triguero I.: 1
Herrer F.: 1
Derrac J.: 1
Marin J.: 1
Ortiz M.L.: 1
Dorigo M.: 1
Lastra M.: 1
Krasnogor N.: 1
Xiong N.: 1
Bergmeir C.: 1

List of journals in which I have published


In [20]:
revistas = sorted(set(papers_journal['journal']))
for revista in revistas:
    print(revista)


Applied Soft Computing Journal
European Journal of Operational Research
Evolutionary Computation
Expert Systems with Applications
IEEE Transactions on Neural Networks and Learning Systems
Information Sciences
International Journal of Computational Intelligence Systems
Journal of Heuristics
Soft Computing
Swarm and Evolutionary Computation

Searching by a criterion


In [21]:
def scopus_search_papers(words, type='ar'):
    """
    Return the list of papers from the author
    """
    query = "TITLE-ABS-KEY({}) AND PUBYEAR > 2010 AND DOCTYPE({})".format(words, type)
    field = "dc:identifier"
    
    list = scopus_search_list(query, field, 200)
    return extract_info_papers(list)

In [22]:
results = scopus_search_papers("large scale optimization evolutionary")

In [23]:
papers_lsgo = pd.DataFrame.from_dict(results)
num_total = len(papers_lsgo)
print(sorted(set(papers_lsgo['year'])))


['2013', '2014', '2015', '2016']

Get the number of journals with the results


In [24]:
lsgo_journal = papers_lsgo.groupby(['journal']).sum()
lsgo_journal.columns = ['number']
lsgo_journal = lsgo_journal.sort('number', ascending=False)
lsgo_journal = lsgo_journal[lsgo_journal['number']>0]

print(lsgo_journal)


                                                    number
journal                                                   
International Journal of Electrical Power and E...      66
Knowledge-Based Systems                                 26
IEEE Transactions on Evolutionary Computation           25
Energy                                                  22
Electric Power Systems Research                         19
Environmental Modelling and Software                    17
Soft Computing                                          16
Molecular Phylogenetics and Evolution                   15
International Journal of Production Economics           15
Information Sciences                                    13
IEEE Transactions on Power Systems                      13
IEEE Transactions on Smart Grid                         12
International Journal of Hydrogen Energy                11
Applied Energy                                          10
Engineering Applications of Artificial Intellig...      10
Accounts of Chemical Research                            9
Applied Soft Computing Journal                           9
Marine Drugs                                             8
Journal of Computational Chemistry                       8
Computers and Industrial Engineering                     8
Applied Mathematics and Computation                      5
Diangong Jishu Xuebao/Transactions of China Ele...       5
Functional Ecology                                       5
Electric Power Components and Systems                    5
Expert Systems with Applications                         5
Swarm and Evolutionary Computation                       5
The Scientific World Journal                             4
International Journal of Innovative Computing, ...       4
Mathematical Problems in Engineering                     4
Evolutionary Bioinformatics                              3
...                                                    ...
Tien Tzu Hsueh Pao/Acta Electronica Sinica               2
International Journal of Power and Energy Conve...       2
Molecular BioSystems                                     2
Mathematical Biosciences                                 2
Journal of Hydrology                                     2
Journal of Network and Computer Applications             2
Journal of Heuristics                                    2
Zhongguo Dianji Gongcheng Xuebao/Proceedings of...       2
Engineering Optimization                                 2
Environmental Earth Sciences                             2
Applied Intelligence                                     2
Cell Reports                                             1
Engineering Computations (Swansea, Wales)                1
Dianli Zidonghua Shebei/Electric Power Automati...       1
Journal of the American Water Resources Associa...       1
Chinese Journal of Aeronautics                           1
ChemPhysChem                                             1
IEEE Transactions on Systems, Man, and Cybernet...       1
Journal of Asian Architecture and Building Engi...       1
Omega (United Kingdom)                                   1
Simulation                                               1
Structure and Infrastructure Engineering                 1
Advanced Energy Materials                                1
Water Resources Management                               1
Water Resources Research                                 1
Nanoscale Research Letters                               1
Journal of Systems Architecture                          1
Engineering with Computers                               1
International Journal of Clothing Science and T...       1
International Journal of Applied Mechanics               1

[68 rows x 1 columns]

In [25]:
papers_lsgo = papers_lsgo.sort('citations', ascending=False)
papers_lsgo = papers_lsgo[papers_lsgo['citations']>0]

for id in papers_lsgo['id'][:10]:
    print(get_scopus_info(id))


Hong W.-C., Dong Y., Zhang W.Y., Chen L.-Y., K. Panigrahi B., Cyclic electric load forecasting by seasonal SVR with chaotic genetic algorithm, International Journal of Electrical Power and Energy Systems, 44, 604-614, (2013-01-01). doi:10.1016/j.ijepes.2012.08.010 (cited 39 times).

Wang L., Zheng X.-L., Wang S.-Y., A novel binary fruit fly optimization algorithm for solving the multidimensional knapsack problem, Knowledge-Based Systems, 48, 17-23, (2013-08-01). doi:10.1016/j.knosys.2013.04.003 (cited 25 times).

Srinivasa Reddy A., Vaisakh K., Shuffled differential evolution for large scale economic dispatch, Electric Power Systems Research, 96, 237-245, (2013-01-07). doi:10.1016/j.epsr.2012.11.010 (cited 17 times).

Wang X., Xie X., Cheng T.C.E., A modified artificial bee colony algorithm for order acceptance in two-machine flow shops, International Journal of Production Economics, 141, 14-23, (2013-01-01). doi:10.1016/j.ijpe.2012.06.003 (cited 15 times).

Paradis E., Molecular dating of phylogenies by likelihood methods: A comparison of models and a new information criterion, Molecular Phylogenetics and Evolution, 67, 436-444, (2013-05-01). doi:10.1016/j.ympev.2013.02.008 (cited 15 times).

Zhang X., Beeson P., Link R., Manowitz D., Izaurralde R.C., Sadeghi A., Thomson A.M., Sahajpal R., Srinivasan R., Arnold J.G., Efficient multi-objective calibration of a computationally intensive hydrologic model with parallel computing software in Python, Environmental Modelling and Software, 46, 208-218, (2013-08-01). doi:10.1016/j.envsoft.2013.03.013 (cited 15 times).

Omidvar M.N., Li X., Mei Y., Yao X., Cooperative co-evolution with differential grouping for large scale optimization, IEEE Transactions on Evolutionary Computation, 18, 378-393, (2014-01-01). doi:10.1109/TEVC.2013.2281543 (cited 14 times).

Azizipanah-Abarghooee R., A new hybrid bacterial foraging and simplified swarm optimization algorithm for practical optimal dynamic load dispatch, International Journal of Electrical Power and Energy Systems, 49, 414-429, (2013-03-25). doi:10.1016/j.ijepes.2013.01.013 (cited 13 times).

Ahmed F., Deb K., Multi-objective optimal path planning using elitist non-dominated sorting genetic algorithms, Soft Computing, 17, 1283-1299, (2013-07-01). doi:10.1007/s00500-012-0964-8 (cited 12 times).

Tang Y., Ju P., He H., Qin C., Wu F., Optimized control of DFIG-based wind generation using sensitivity analysis and particle swarm optimization, IEEE Transactions on Smart Grid, 4, 509-520, (2013-02-08). doi:10.1109/TSG.2013.2237795 (cited 12 times).

Count the references and number for each author


In [26]:
show_author_list(authors = get_authors_list(papers_lsgo.id))


Wang L.: 4
Wu J.: 4
Wang Y.: 3
Bureerat S.: 3
Pholdee N.: 3
Zhu Y.: 3
Yao X.: 3
Wang H.: 3
Chen Z.: 3
Yang Y.: 3
Ma L.: 2
Sabourin R.: 2
Wang J.: 2
Delbem A.C.B.: 2
Wang W.: 2
Chen T.: 2
Ma H.: 2
Granger E.: 2
Zhuang J.: 2
Cosar A.: 2
Tang Y.: 2
Sun X.: 2
Wu F.: 2
Dokeroglu T.: 2
Chen H.: 2
Zheng C.: 2
Basu M.: 2
Roy P.K.: 2
Zhang X.: 2
Jiang H.: 2
Liu W.: 2
Hadka D.: 2
Sanches D.S.: 2
Li Y.: 2
Arnold J.G.: 1
Tino P.: 1
Moral M.: 1
Murphy G.: 1
Counsell J.: 1
Xie X.: 1
Guan X.: 1
Hofstetter J.: 1
Bacardit J.: 1
Fei M.: 1
Rios-Mercado R.Z.: 1
Ye W.: 1
Modiri-Delshad M.: 1
Wu S.-J.: 1
Hu M.: 1
Li X.: 1
Dong C.: 1
Maurer K.D.: 1
He Z.: 1
Chen M.: 1
Yan Q.: 1
Chen N.: 1
Vaisakh K.: 1
Yu S.: 1
Prusty R.C.: 1
Im Y.-T.: 1
Galleguillos N.: 1
Ju P.: 1
Sharma D.: 1
Mandal D.: 1
Lee S.: 1
Kwon H.-C.: 1
de Athayde Costa e Silva M.: 1
Cheng T.C.E.: 1
Lughofer E.: 1
Norouzi A.: 1
Hartke B.: 1
Rajabalipour Cheshmehgaz H.: 1
Zhao S.-Z.: 1
Rahim N.A.: 1
Chen M.-R.: 1
Tang B.: 1
Hahn G.: 1
Weir J.D.: 1
Gnanamurthy R.K.: 1
Bohrer G.: 1
Chen B.-S.: 1
Wen J.: 1
Austern G.: 1
Basturk A.: 1
Shang C.: 1
Huang X.: 1
Heydarizadeh P.: 1
Reed P.M.: 1
Srinivasan D.: 1
Luo J.: 1
Qin C.: 1
Cao Y.: 1
Suganthan P.N.: 1
Ji B.: 1
Tliba S.: 1
Izaurralde R.C.: 1
Chen L.-Y.: 1
Wang Z.: 1
Ceylan H.: 1
Ahmadi M.R.: 1
Hong W.-C.: 1
Nezhad A.E.: 1
Buonassisi T.: 1
Chu X.: 1
Zhang Y.: 1
Fang T.: 1
He T.: 1
Xu Y.: 1
Guan Z.: 1
Nechay M.R.: 1
Loizeau D.: 1
Guan D.: 1
Ren A.: 1
Yu X.-K.: 1
Golobardes E.: 1
Gao R.: 1
Xie P.: 1
He H.: 1
Zaher O.: 1
Zhang Z.H.: 1
Hinojosa V.H.: 1
Reed P.: 1
Fu J.: 1
Bliss C.A.: 1
Bayir M.A.: 1
Zhang H.: 1
Feng H.-M.: 1
Huang K.C.: 1
Amrhein W.: 1
Zaim A.H.: 1
Quan S.: 1
Zhang W.Y.: 1
Ding W.: 1
Srinivasa Reddy A.: 1
Silber S.: 1
Niu Q.: 1
Hu Z.-H.: 1
Lu Q.: 1
London Junior J.B.A.: 1
Sahajpal R.: 1
Shorten R.N.: 1
Rundel P.: 1
Dong W.S.: 1
Hegazy T.: 1
Yuan B.: 1
Griggs W.M.: 1
Mei Y.: 1
Schoefs B.: 1
Dariane A.B.: 1
Zhang J.: 1
Dong Y.: 1
Peter Klement E.: 1
Peng C.: 1
Figueroa A.: 1
Wu T.: 1
Sheng Z.-H.: 1
Wang X.: 1
Castillo J.: 1
Hellendoorn H.: 1
Leguizamon G.: 1
Pan J.: 1
Medvigy D.: 1
Trivedi A.: 1
Frank M.R.: 1
Zhang L.: 1
Alexandrova A.N.: 1
Wu C.-T.: 1
Ahmadi A.: 1
Deb K.: 1
Lee T.K.: 1
Morosuk T.: 1
De Lima T.W.: 1
Kurkalova L.A.: 1
Boland N.: 1
Mimouni V.: 1
Li Q.: 1
Mariani V.C.: 1
Chun M.-S.: 1
Dong W.: 1
Bertrand M.: 1
Lin Y.-P.: 1
Yan J.C.: 1
Kim D.-K.: 1
Creese C.: 1
Dos Santos Coelho L.: 1
Zhou S.: 1
K. Panigrahi B.: 1
Gopalakrishnan K.: 1
Wang S.-Y.: 1
Cao L.: 1
Cui Z.: 1
Powell D.M.: 1
Irwin G.W.: 1
De Schutter B.: 1
Long S.-Q.: 1
Thomson A.M.: 1
Li S.: 1
Laili Y.J.: 1
Rashedi R.: 1
Wright S.J.: 1
Nee A.Y.C.: 1
Sarkar R.: 1
Neto O.M.: 1
Nuques B.: 1
Sadeghi A.: 1
Mao Y.: 1
Zhao T.: 1
Dodds P.S.: 1
Hu K.: 1
Mo W.T.: 1
Morishige A.E.: 1
Gonzalez-Velarde J.L.: 1
Jiang X.: 1
Poirier I.: 1
Rabil B.S.: 1
Zhu L.: 1
Garcia-Nieto J.: 1
Zavoianu A.-C.: 1
Paradis E.: 1
Yuan X.: 1
Wu Z.: 1
Apolloni J.: 1
Zhao X.: 1
London Jr. J.B.A.: 1
Ahmed F.: 1
Weise T.: 1
Qiu W.: 1
Park W.-W.: 1
Zhao S.: 1
Pereyra V.: 1
Guimaraes F.G.: 1
Smith Q.A.: 1
Salazar-Aguilar M.A.: 1
Fenning D.P.: 1
Brindley J.: 1
Manowitz D.: 1
Li B.: 1
Omidvar M.N.: 1
Orriols-Puig A.: 1
Fornells A.: 1
Sack L.: 1
Fleming P.J.: 1
Xue X.: 1
Danforth C.M.: 1
Bramerdorfer G.: 1
Li M.: 1
Liao K.-L.: 1
Li K.: 1
Yu R.: 1
Chiang T.-C.: 1
Han B.: 1
Wu Y.: 1
Alba E.: 1
Tian C.H.: 1
Ma T.: 1
Colavin A.: 1
Garcia-Piquer A.: 1
Mendes A.: 1
Niu B.: 1
Rahnamayan S.: 1
Shanavas I.H.: 1
Hao H.-Q.: 1
Karami F.: 1
Azizipanah-Abarghooee R.: 1
Valdez C.E.: 1
Groot N.: 1
Oberbauer S.: 1
Chen G.: 1
Tian W.: 1
Wibowo A.: 1
Xie C.: 1
Ordonez-Hurtado R.H.: 1
Tsatsaronis G.: 1
Singh C.: 1
Liang C.: 1
Lei J.: 1
Xie Y.M.: 1
Zheng X.-L.: 1
Monds R.D.: 1
Zhao Y.-L.: 1
Sun H.: 1
Desa M.I.: 1
Ulmann L.: 1
Riveros C.: 1
Vellasques E.: 1
Srinivasan R.: 1
Shi Q.: 1
Yin X.: 1
Li Z.: 1
Jirathiyut T.: 1
Cooper T.F.: 1
Zuschlag A.: 1
Ursell T.: 1
Saunders M.: 1
Huang W.: 1
Shenfield A.: 1
Prado R.S.: 1
Hao T.: 1
Guiney P.: 1
Ren Y.: 1
Li J.: 1
Wang N.: 1
Andrade C.: 1
Beeson P.: 1
Akay R.: 1
Tao F.: 1
Zhang Z.: 1
Li G.: 1
Atkinson J.: 1
Chen W.: 1
Huang J.: 1
Barisal A.K.: 1
Klein C.E.: 1
Link R.: 1
Georgiev P.G.: 1

For Congress


In [27]:
results_cp = scopus_search_papers("large scale optimization evolutionary", type='cp')
results = pd.DataFrame.from_dict(results_cp)
show_author_list(authors = get_authors_list(results.id))


Sanches D.S.: 6
Farhat I.A.: 6
El-Hawary M.E.: 6
Delbem A.C.B.: 6
Wang Y.: 4
Li X.: 4
Das S.: 4
London J.B.A.: 4
Wang X.: 3
Qin A.K.: 3
Sarker R.: 3
Sayed E.: 3
Essam D.: 3
Wang J.: 3
Kazimipour B.: 3
Wei F.: 3
Zhou Z.: 3
Li J.: 3
Zong T.: 2
Zhang G.: 2
Brest J.: 2
Mizuno K.: 2
Pena J.-M.: 2
Liu Y.: 2
Amudha T.: 2
Gois M.M.: 2
Schaul T.: 2
Deepan Babu P.: 2
Yang Y.: 2
Tang M.: 2
Lu Y.: 2
Muelas S.: 2
Qi J.: 2
Yao X.: 2
Guimaraes F.G.: 2
Li B.: 2
Chiba K.: 2
Santos A.C.: 2
Li H.: 2
Rajasekhar A.: 2
Marechal F.: 2
Aratsu Y.: 2
Ludwig S.A.: 2
Tang K.: 2
Li Z.: 2
Rojas Y.: 2
Zeng Y.: 2
Fister I.: 2
Nishihara S.: 2
Satapathy S.K.: 2
Feng H.: 2
Omidvar M.N.: 2
Landa R.: 2
Sasaki H.: 2
Zich R.E.: 1
Zhou J.: 1
Banos R.: 1
Huang Q.: 1
Shilpa K.C.: 1
Onoda A.: 1
Richardson C.: 1
Neville R.S.: 1
Sur A.: 1
Affenzeller M.: 1
Xiong S.: 1
Li Y.B.: 1
Sandeep G.: 1
Nikoo H.: 1
Jia Y.: 1
Abd Rahman N.: 1
Zheng W.: 1
Tejima T.: 1
Teixeira O.N.: 1
Poorjandaghi S.S.: 1
El-Abd M.: 1
Caschera F.: 1
Yusoh Z.I.M.: 1
Mirzaei A.: 1
Lancinskas A.: 1
Sun J.: 1
Lughofer E.: 1
Othman M.M.: 1
Zong X.: 1
Ranjith J.: 1
Clarich A.: 1
Liu C.: 1
Hutterer S.: 1
Yen S.-J.: 1
Prado R.S.: 1
Skalna I.: 1
Reddy S.S.: 1
Uchida M.: 1
Kang Q.: 1
Prasad R.: 1
Belede L.: 1
Fontanarosa J.B.: 1
Ali S.: 1
Guo W.: 1
Istin M.: 1
Liu R.P.: 1
Izzo D.: 1
Wu Q.: 1
Liu Z.J.: 1
Rantzer A.: 1
Kavian Y.S.: 1
Fister Jr. I.: 1
Rostam-Abadi M.: 1
Shen Y.-C.: 1
Murray R.M.: 1
Pirinoli P.: 1
Panigrahi B.K.: 1
Zhou Y.: 1
Bhuvanesh A.: 1
Nguyen H.H.: 1
Samantaray S.R.: 1
Knauf R.: 1
Herrera-Lozada J.C.: 1
Vega-Rodriguez M.A.: 1
Uhl A.: 1
Hu F.: 1
Li C.: 1
Arya K.V.: 1
Zilinskas J.: 1
Li P.: 1
Matsuba I.: 1
Hanczyc M.: 1
Taud H.: 1
Ponce R.: 1
Nakatsu K.: 1
Kaban A.: 1
Satapathy A.: 1
Li Y.: 1
Melgarejo R.M.A.: 1
Huang C.-L.: 1
Oliveri G.: 1
Silber S.: 1
Niu Q.: 1
Wu C.-S.: 1
Pouransari N.: 1
Simpson T.W.: 1
Massa A.: 1
Pfister H.: 1
Kolici V.: 1
Tao J.-W.: 1
Mei Y.: 1
Pluhacek M.: 1
Xu L.-W.: 1
Zheng X.: 1
Novais F.T.: 1
Rodriguez-Vazquez J.J.: 1
Kumar D.: 1
Kronberger G.: 1
Majumdar R.: 1
Heck V.: 1
Gaddam R.R.: 1
Whitacre J.M.: 1
Duda J.: 1
London Jr. J.B.A.: 1
He S.: 1
Rout P.K.: 1
Leon C.: 1
Rocha A.J.: 1
Jackson A.: 1
Zheng J.J.: 1
Xi Z.: 1
Karimaghaee P.: 1
Liu W.: 1
Kobti Z.: 1
Zuo Z.H.: 1
Shenq S.-L.: 1
Zhu X.: 1
De Lima T.W.: 1
Marchi M.: 1
Musirin I.: 1
Huaxian L.: 1
Turan N.: 1
Cao X.: 1
Allison J.T.: 1
Zelinka I.: 1
Cai X.: 1
Tribastone M.: 1
Coello C.A.C.: 1
Auinger F.: 1
Yang X.Y.: 1
Talebi H.: 1
Arabali A.: 1
Wang H.: 1
Sun X.: 1
Zhang L.: 1
Padma M.P.: 1
Antonio L.M.: 1
Chiou J.-P.: 1
Suganthan P.N.: 1
Liu H.: 1
Gupta A.: 1
Latorre A.: 1
Bawa S.: 1
Chiu S.-Y.: 1
Heath J.K.: 1
Chen H.: 1
Chen S.: 1
Hsieh S.-T.: 1
Corne D.W.: 1
Bansal J.C.: 1
Pham H.: 1
Zavoianu A.-C.: 1
Yuan X.: 1
Kiranyaz S.: 1
Lemarchand L.: 1
Ghofrani M.: 1
Viani F.: 1
Takahashi K.: 1
Mahdavi S.: 1
Gong Y.-J.: 1
Biswas S.: 1
Argyros A.A.: 1
Musolesi M.: 1
Prandtstetter M.: 1
Desai S.R.: 1
Baburaj E.: 1
Lin L.: 1
Chou C.-H.: 1
Oliwa T.: 1
Hiermann G.: 1
Bramerdorfer G.: 1
Sakai S.: 1
Mishra D.: 1
Maucec M.S.: 1
Lian L.: 1
Ye S.: 1
Euler R.: 1
Suzuki M.: 1
Wang F.: 1
Zhou M.-C.: 1
Labusch N.: 1
Rahnamayan S.: 1
Gu Y.: 1
Kapoor L.: 1
Pourjamal Y.: 1
Ko L.-W.: 1
Tang J.: 1
Wang L.: 1
Fukunaga A.: 1
Chen Z.: 1
Fang G.: 1
Soleimani M.: 1
Mishra V.D.: 1
Madduri K.: 1
Chen G.: 1
Chuang Y.-T.: 1
Niizeki Y.: 1
Lee H.-C.: 1
Zhao S.-Z.: 1
Shibukawa N.: 1
Zumer V.: 1
Wu S.-J.: 1
Duran B.: 1
Li Z.Y.: 1
LaTorre A.: 1
Boskovic B.: 1
Batista L.S.: 1
Rasheed K.: 1
Klement E.P.: 1
Trystram D.: 1
Stefanou S.: 1
Mishra S.: 1
Lima T.W.: 1
Takizawa M.: 1
Jiang Y.: 1
Winter R.: 1
Martens M.: 1
Priester C.: 1
Barron-Fernandez R.: 1
Etezadi-Amoli M.: 1
Zhang N.: 1
Schaar J.E.: 1
Segredo E.: 1
Zhang Y.-Z.: 1
Reed P.: 1
Calixto T.K.L.: 1
Xia R.: 1
Pavanello R.: 1
Bender A.: 1
Bose D.: 1
Tianyang Z.: 1
Shao M.: 1
Furuta H.: 1
Dawar D.: 1
Elsayed S.: 1
Woodruff M.J.: 1
Souza D.L.: 1
Muniraj N.J.R.: 1
Rocca P.: 1
Chowdhury A.: 1
Narukawa K.: 1
Dai G.: 1
Chiong R.: 1
Karman S.: 1
Dasgupta D.: 1
Lotfi S.: 1
Corne D.: 1
Heydebreck P.: 1
Wiak S.: 1
Han J.-S.: 1
Di Barba P.: 1
Acharya D.P.: 1
Schenck M.: 1
Pedroni N.: 1
Zhang J.W.: 1
Ortiz A.: 1
Rigoni E.: 1
Potti S.: 1
Ma Y.-Y.: 1
Waghmare G.G.: 1
Watanabe S.: 1
Rebreyend P.: 1
Ghodrati A.: 1
Schutze N.: 1
Ha B.V.: 1
Sakurai Y.: 1
Rendl A.: 1
Huang X.D.: 1
Mousavi A.E.: 1
Ionel D.M.: 1
Xie Y.M.: 1
Teng X.-Y.: 1
Lee C.: 1
Toscano-Pulido G.: 1
Castoldi M.F.: 1
Chen Q.: 1
Bi Y.-M.: 1
Arellano-Verdejo J.: 1
Tanabe R.: 1
Rocha I.: 1
Subbaraj P.: 1
Wagn D.D.: 1
Feng T.: 1
Sasi D.S.: 1
Reed P.M.: 1
Segura C.: 1
Ramezani F.: 1
Wang M.: 1
Bui L.T.: 1
Li S.: 1
Moret B.M.E.: 1
Wang C.-C.: 1
Orike S.: 1
Jia G.: 1
Kaiquan C.: 1
Rao R.V.: 1
Huang H.-L.: 1
Lahrmann G.: 1
Gabbouj M.: 1
Nowak M.A.: 1
Chen S.-T.: 1
Bashir H.A.: 1
Huang A.: 1
Rocha M.: 1
Sircar J.: 1
Ensinas A.V.: 1
Cardenas-Montes M.: 1
Gotsis A.G.: 1
Lin Z.: 1
Jadon S.S.: 1
Reza M.: 1
Jain A.: 1
Kou J.: 1
Mori Y.: 1
Alexiou A.: 1
Meng K.: 1
Li Z.X.: 1
Kalantzis G.: 1
Rand D.G.: 1
Puchinger J.: 1
Sun Y.: 1
Lassig J.: 1
Amrhein W.: 1
Che Z.: 1
Senkerik R.: 1
Radke R.: 1
Rodemann T.: 1
Rasmussen S.: 1
Lu H.: 1
Ishibashi K.: 1
Bocquenet G.: 1
London Junior J.B.A.: 1
Khaleghi S.: 1
Codina V.: 1
Randles A.P.: 1
Russo R.: 1
Yao L.: 1
Wu J.-Y.: 1
Zhang J.: 1
Afshar A.: 1
Chowdhury J.G.: 1
Tsuruta S.: 1
Mollinetti M.A.F.: 1
Cristea V.: 1
Fang Y.-P.: 1
Sivakumar P.: 1
Zuo X.: 1
Pope A.: 1
Trunfio G.A.: 1
Grundmann J.: 1
Athauda R.: 1
Barolli L.: 1
Wang W.: 1
Gen M.: 1
Strobel O.: 1
Wu C.-T.: 1
Agogino A.: 1
Durrant R.J.: 1
Mazucato S.C.: 1
Chen W.-N.: 1
Morosuk T.: 1
Mertikopoulos P.: 1
Zhang K.: 1
Krueger L.R.: 1
Khoury I.: 1
Silva M.A.: 1
Rashedi A.: 1
White T.: 1
Pothiraj S.: 1
Lepping J.: 1
Bui T.: 1
Rojas-Galeano S.: 1
Rodriguez N.: 1
Chang P.-C.: 1
Moghaddam R.K.: 1
Obregon N.N.: 1
Xiaobo X.: 1
Ho S.-Y.: 1
Dong C.: 1
Bootkrajang J.: 1
Lakshmi Narayana C.: 1
Sun H.J.: 1
Vu C.C.: 1
Ghahremani E.: 1
Pinto J.P.: 1
Waldock A.: 1
Sharma H.: 1
Santosh K.V.S.: 1
Morrisett G.: 1
Chang C.-F.: 1
Pian Z.: 1
Liu J.: 1
Xhafa F.: 1
Zhou X.: 1
Hameed A.: 1
Shen T.-W.: 1
Hasegawa H.: 1
Su S.: 1
Wang Z.: 1
Shiri M.E.: 1
Pop F.: 1
Sanchez Alvaro E.: 1
Kimovski D.: 1
Wu Z.: 1
Qingge P.: 1
Sevilla I.: 1
Martins J.: 1
Chen J.: 1
Weise T.: 1
Zio E.: 1
Najafi S.: 1
Laio T.-F.: 1
Albarelli J.: 1
Tang J.W.: 1
Zhang J.-Q.: 1
Gao N.: 1
Hsieh S.-H.: 1
Ding W.: 1
Komorasamy G.: 1
Guo D.: 1
Lee K.Y.: 1
Yanbo Z.: 1
Jonsson V.: 1
Mahani A.: 1
Ebadat A.: 1
Takahama T.: 1
Karunanithi K.: 1
Mussetta M.: 1
Soltani-Sarvestani M.A.: 1
Malakooti M.V.: 1
Das A.K.: 1
Raidl G.: 1
Khetan A.: 1
Savini A.: 1
Rios J.: 1
Salomon R.: 1
Hsu C.-H.: 1
Shu J.: 1
Madeiro S.S.: 1
Huang P.: 1
Shi Z.Z.: 1
Zuben F.J.V.: 1
Valocchi A.: 1
Tsatsaronis G.: 1
Duan Y.: 1
Kundu S.: 1
Yue T.: 1
Morgan D.: 1
Zamuda A.: 1
Maglio M.M.: 1
Ince T.: 1
Zeng T.: 1
Miho R.: 1
Shi Q.: 1
Ortega J.: 1
Wagner S.: 1
Rohlfshagen P.: 1
Loshchilov I.: 1
Olguin-Carbajal M.: 1
Huo Y.: 1
Guan Z.: 1
Siva Raja P.M.: 1
Silc J.: 1
Peng L.: 1
Korosec P.: 1
Dong H.: 1
Dutkiewicz E.: 1
Hadka D.: 1
Liang N.: 1
Dai Y.: 1
Apte A.: 1
Radman A.: 1
Vasu G.: 1
Steen W.: 1
Raeesi N.M.R.: 1

In [28]:
results_cp = scopus_search_papers("large scale optimization differential evolution", type='cp')
results = pd.DataFrame.from_dict(results_cp)
show_author_list(authors = get_authors_list(results.id))


Rojas Y.: 2
Wu Z.: 2
Chiba K.: 2
Wang X.: 2
Li H.: 2
Wang L.: 2
Landa R.: 2
Yang Y.: 2
Li J.: 2
Wang H.: 2
Turan N.: 1
Neri F.: 1
White T.: 1
Lu Y.: 1
Schenck M.: 1
Pham H.: 1
Huang Q.: 1
Wang Y.: 1
Bui T.: 1
Reddy S.S.: 1
Yang B.: 1
Fister I.: 1
Zhang G.-J.: 1
Zong T.: 1
Acharya D.P.: 1
Obregon N.N.: 1
Pedroni N.: 1
Xiaobo X.: 1
Xia S.: 1
Li Y.B.: 1
Li X.: 1
Dong C.: 1
Rajasekhar A.: 1
Yao X.: 1
Chen S.: 1
Li P.: 1
Birkholzer J.: 1
Zhou X.: 1
Sun H.J.: 1
Zhang L.: 1
Cihan A.: 1
Pope A.: 1
Vega-Rodriguez M.A.: 1
Coello C.A.C.: 1
Suganthan P.N.: 1
Sommer S.: 1
Hsieh S.-T.: 1
Sharma H.: 1
Santosh K.V.S.: 1
Chang C.-F.: 1
Wang J.: 1
Affijulla S.: 1
Karunanithi K.: 1
Liu C.: 1
Das A.K.: 1
Peng L.: 1
Bolufe-Rohler A.: 1
Hasegawa H.: 1
Kazimipour B.: 1
Das S.: 1
Bansal J.C.: 1
Rahnamayan S.: 1
Toscano-Pulido G.: 1
Bianchi M.: 1
Pekkarinen J.: 1
Li G.: 1
Sanchez Alvaro E.: 1
Sun J.: 1
He D.: 1
Qingge P.: 1
Fernandes E.M.G.P.: 1
Sevilla I.: 1
Stanarevic N.: 1
Cardenas-Montes M.: 1
Skalna I.: 1
Zio E.: 1
Feng T.: 1
He S.: 1
Guimaraes F.G.: 1
Jia G.: 1
Wang M.: 1
Tonutti P.: 1
He Y.-J.: 1
Arya K.V.: 1
Wang C.-C.: 1
Kaiquan C.: 1
Wei F.: 1
Musolesi M.: 1
Panigrahi B.K.: 1
Zhou Y.: 1
Bhuvanesh A.: 1
Huang A.: 1
Sakai S.: 1
Ludwig S.A.: 1
Herrera-Lozada J.C.: 1
Maucec M.S.: 1
Chiou J.-P.: 1
Tang K.: 1
Ye S.: 1
Qin A.K.: 1
Wang F.: 1
Lauze F.: 1
Jadon S.S.: 1
Yanbo Z.: 1
Xi Z.: 1
Polonen H.: 1
Shu J.: 1
Li Z.X.: 1
Yen S.-J.: 1
Huang P.: 1
Taud H.: 1
Ponce R.: 1
Shi Z.Z.: 1
Arellano-Verdejo J.: 1
Chauhan S.: 1
Ionel D.M.: 1
Delbem A.C.B.: 1
Che Z.: 1
Tsatsaronis G.: 1
Melgarejo R.M.A.: 1
Duan Y.: 1
Sandeep G.: 1
Boskovic B.: 1
Majumdar R.: 1
Brest J.: 1
London Junior J.B.A.: 1
Zamuda A.: 1
Takahama T.: 1
Nielsen M.: 1
Zhou M.: 1
Chiu S.-Y.: 1
Rodriguez-Vazquez J.J.: 1
Lian L.: 1
Leguizamon G.: 1
Vasu G.: 1
Olguin-Carbajal M.: 1
Fang Y.-P.: 1
Schaar J.E.: 1
Barron-Fernandez R.: 1
Prado R.S.: 1
Heath J.K.: 1
Trunfio G.A.: 1
Liu W.: 1
Wu S.-J.: 1
Dong H.: 1
Duda J.: 1
Wang W.: 1
Tianyang Z.: 1
Rout P.K.: 1
Dawar D.: 1
Zhao S.-Z.: 1
Sanches D.S.: 1
Wu C.-T.: 1
Pennec X.: 1
Cheng J.: 1
Rajakumar B.R.: 1
Azad Md.A.K.: 1
Li S.: 1
Morosuk T.: 1
De Lima T.W.: 1
Xia L.: 1
Dai G.: 1
Yuan Y.: 1
Huaxian L.: 1
Karman S.: 1

In [29]:
results = results.sort(['citations'], ascending=False)
for id in results.id[:10]:
    print(get_scopus_info(id))


Wang H., Rahnamayan S., Wu Z., Adaptive Differential Evolution with variable population size for solving high-dimensional problems, 2011 IEEE Congress of Evolutionary Computation, CEC 2011, 1, 2626-2632, (2011-08-29). doi:10.1109/CEC.2011.5949946 (cited 5 times).

Sommer S., Lauze F., Nielsen M., Pennec X., Kernel bundle EPDiff: Evolution equations for multi-scale diffeomorphic image registration, Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics), 6667 LNCS, 677-688, (2012-01-16). doi:10.1007/978-3-642-24785-9_57 (cited 2 times).

Kazimipour B., Li X., Qin A.K., Effects of population initialization on differential evolution for large scale optimization, Proceedings of the 2014 IEEE Congress on Evolutionary Computation, CEC 2014, 1, 2404-2411, (2014-01-01). doi:10.1109/CEC.2014.6900624 (cited 2 times).

Duda J., Skalna I., Differential evolution applied to large scale parametric interval linear systems, Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics), 7116 LNCS, 206-213, (2012-06-06). doi:10.1007/978-3-642-29843-1_23 (cited 2 times).

Zhou X., Wu Z., Wang H., Elite opposition-based differential evolution for solving large-scale optimization problems and its implementation on GPU, Parallel and Distributed Computing, Applications and Technologies, PDCAT Proceedings, 1, 727-732, (2012-12-01). doi:10.1109/PDCAT.2012.70 (cited 2 times).

Chiba K., Evolutionary hybrid computation in view of design information by data mining, 2013 IEEE Congress on Evolutionary Computation, CEC 2013, 1, 3387-3394, (2013-08-21). doi:10.1109/CEC.2013.6557985 (cited 2 times).

Stanarevic N., Comparison of different mutation strategies applied to artificial bee colony algorithm, Proceedings of the European Computing Conference, ECC '11, 1, 257-262, (2011-09-29). doi:NA (cited 2 times).

Azad Md.A.K., Fernandes E.M.G.P., Modified differential evolution based on global competitive ranking for engineering design optimization problems, Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics), 6784 LNCS, 245-260, (2011-07-19). doi:10.1007/978-3-642-21931-3_20 (cited 2 times).

Ye S., Dai G., Peng L., Wang M., A hybrid adaptive coevolutionary differential evolution algorithm for large-scale optimization, Proceedings of the 2014 IEEE Congress on Evolutionary Computation, CEC 2014, 1, 1277-1284, (2014-01-01). doi:10.1109/CEC.2014.6900259 (cited 1 times).

Sun J., Dong H., Cooperative co-evolution with correlation identification grouping for large scale function optimization, 2013 IEEE 3rd International Conference on Information Science and Technology, ICIST 2013, 1, 889-893, (2013-01-01). doi:10.1109/ICIST.2013.6747683 (cited 1 times).